home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / ProgramFilesFolder / Data / Network.scr < prev    next >
Encoding:
Text File  |  2004-08-30  |  2.6 KB  |  80 lines

  1. // Time in seconds after which a host will be disconnected if during that period
  2. // no reliable packets were confirmed by the host
  3. // Set to 10s by default
  4. !DisconnectTime( n )
  5.  
  6.  
  7. // Time from the initial connection of a host that must pass before it can be dissconnected due to DisconnectTime settings
  8. // Works only when DisconnetTime is defined
  9. // Must be defined if DisconnetTime is defined.
  10. // Must be grater than 0.
  11. // Set to 60s by default
  12. !DisconnectStartTime( n )
  13.  
  14.  
  15. // Port for All-Seeing Eye queries connection. To calculate port this value is added
  16. // to server game port. Default 1.
  17. !AllSeeingEyePort(n)
  18.  
  19. // Network address to be used (important if we more then one network interface exists)
  20. // Must be in xxx.xxx.xxx.xxx format
  21. // If no specified default (hostname) address is used
  22. !ForceNetworkInterface( s )
  23.  
  24. // [Reliable packets resending time] 
  25. //     = max( ResendingLatencyMutliplier * [latency] + ResendingLatencyAdd, ResendingLatencyMaxTime )
  26. // all parameters in seconds
  27. !ResendingLatencyMutliplier(f)
  28. !ResendingLatencyAdd(f)
  29. !ResendingLatencyMaxTime(f)
  30.  
  31. //Master Servers settings:
  32. //Authorization servers
  33. !AuthorizationServer( s )
  34. //Game List servers
  35. !GameListServer( s )
  36. //servers timeout in seconds
  37. !MasterServersTimeOut( i )
  38.  
  39. //latency thresholds x 3 (in miliseconds) + quit game delay (in seconds)
  40. //default: ( 500, 800, 1200, 10 )
  41. !LatencyThresholds( i, i, i, i )
  42.  
  43.  
  44. //ForceNetworkInterface("")
  45.  
  46. DisconnectTime(5)
  47. DisconnectStartTime(30)
  48.  
  49. AllSeeingEyePort(1)
  50.  
  51. ResendingLatencyMutliplier(2.0)
  52. ResendingLatencyAdd(0.030)
  53. ResendingLatencyMaxTime(1)
  54.  
  55. AuthorizationServer( "AuthServer.techland.pl" )
  56. AuthorizationServer( "AuthServer1.techland.pl" )
  57. AuthorizationServer( "AuthServer2.techland.pl" )
  58. AuthorizationServer( "AuthServer3.techland.pl" )
  59. AuthorizationServer( "AuthServer4.techland.pl" )
  60. AuthorizationServer( "AuthServer5.techland.pl" )
  61. AuthorizationServer( "AuthServer6.techland.pl" )
  62. AuthorizationServer( "AuthServer7.techland.pl" )
  63. AuthorizationServer( "AuthServer8.techland.pl" )
  64. AuthorizationServer( "AuthServer9.techland.pl" )
  65. GameListServer( "GameListServer.techland.pl" )
  66. GameListServer( "GameListServer1.techland.pl" )
  67. GameListServer( "GameListServer2.techland.pl" )
  68. GameListServer( "GameListServer3.techland.pl" )
  69. GameListServer( "GameListServer4.techland.pl" )
  70. GameListServer( "GameListServer5.techland.pl" )
  71. GameListServer( "GameListServer6.techland.pl" )
  72. GameListServer( "GameListServer7.techland.pl" )
  73. GameListServer( "GameListServer8.techland.pl" )
  74. GameListServer( "GameListServer9.techland.pl" )
  75. MasterServersTimeOut( 60 )
  76.  
  77.  
  78.  
  79.  
  80.